home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright 1993, Alec Russell, ALL rights reserved
-
- THIS IS AN OBSOLETE FILE
-
- FILE : edmap.h
-
- HISTORY:
- created : july 7, 1993
- updates :
-
- */
- #ifndef DEF_EDMAP
- #define DEF_EDMAP 1
-
-
- // delay between flashes of the word ERASE
- #define FLASH_SPEED 4
-
- #define MAX_TILES (((MAX_X - MIN_X + BORDER*2)*MAX_X_TILE) * ((MAX_Y - MIN_Y +BORDER*2)*MAX_Y_TILE))
- // NOTE !! these must be big enough to hold total of all types that can be placed
- // only max for each sub-type is check, not overall max on map
-
-
- // pause used to control intial map scrolling speed
- #define SPEED 3
-
- enum tile_kinds
- {
- WALL, // 0
- GRASS, // 1
- SHRUB, // 2
- BLUE_BASE, // 3
- RED_BASE, // 4
- TREE // 5
- };
-
- #define NUM_TILE_KINDS 5
-
- enum tile_types
- {
- TILE, // 0
- UNDER_DRESS, // 1
- OVER_DRESS, // 2
- ANM_PIXEL, // 3
- ANM_TILE, // 4
- UNDER_DRESS_TILE, // 5
- OVER_DRESS_TILE // 6
- };
-
-
- enum map_tasks
- {
- TASK_NONE,
- TASK_LOAD,
- TASK_SAVE,
- TASK_EXIT,
- TASK_SET_TILE_ATTRIBS,
- TASK_SET_OBJ_ATTRIBS
- };
-
- #endif
-
- /* ------------------------------ end of file ------------------------- */
-
-